1299b0bafb8bfafe430617873f320fd415192362,test/web/org/codehaus/groovy/grails/web/metaclass/ControllerMetaClassTests.java,ControllerMetaClassTests,testRedirectDynamicMethod,#,92

Before Change


				"}" );		
		
		GrailsApplication application = new DefaultGrailsApplication(new Class[] { groovyClass,secondController },gcl);		
		GroovyObject go = configureDynamicGO(groovyClass, application,request,response);
		GroovyObject go2 = configureDynamicGO(secondController, application,request,response);
		
		// first test redirection within the same controller		

After Change


                "}" );

        GrailsApplication application = new DefaultGrailsApplication(new Class[] { groovyClass,secondController },gcl);
        registerBeanDefinition(groovyClass, application,request,response);
        registerBeanDefinition(secondController, application,request,response);

        GrailsControllerHelper helper1 = new SimpleGrailsControllerHelper(application,context,new MockServletContext());
        GrailsControllerHelper helper2 = new SimpleGrailsControllerHelper(application,context,new MockServletContext());

        // first test redirection within the same controller
        try {